C++ char*,const char*,string的相互轉換 1. string轉const char* string s ="abc";constchar* c_s = s.c_str(); 2. const char*轉string ...